From 722ec20bad64d8c69b173c163011d37ad0b55591 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 6 Jan 2022 19:27:45 +0100 Subject: chore: move Main grid to its children This way I can use full width background for some blocks. --- src/pages/sujet/[slug].tsx | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'src/pages/sujet/[slug].tsx') diff --git a/src/pages/sujet/[slug].tsx b/src/pages/sujet/[slug].tsx index bcea544..c3387b4 100644 --- a/src/pages/sujet/[slug].tsx +++ b/src/pages/sujet/[slug].tsx @@ -6,7 +6,7 @@ import { SubjectProps } from '@ts/types/taxonomies'; import { loadTranslation } from '@utils/helpers/i18n'; import { GetStaticPaths, GetStaticProps, GetStaticPropsContext } from 'next'; import { ParsedUrlQuery } from 'querystring'; -import styles from '@styles/pages/Subject.module.scss'; +import styles from '@styles/pages/Listing.module.scss'; import { getAllSubjectsSlug, getSubjectBySlug, @@ -28,19 +28,22 @@ const Subject: NextPageWithLayout = ({ subject }) => { }; return ( -
+
-
+
{subject.posts.length > 0 && ( -
+

{t`All posts in ${subject.title}`}

    {getPostsList()}
-
+ )}
); -- cgit v1.2.3